Postpone adoption of liquid glass design for iOS 26 #16066
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

For WOOMOB-1222
Description
Temporarily opt out from iOS 26 liquid glass design by enabling
UIDesignRequiresCompatibilityin Info.plist. This prevents visual compatibility issues with the new design language while allowing the app to continue functioning properly on iOS 26.This temporarily avoids a critical crash in
NotificationsBadgeController.hideDotOn:woocommerce-ios/WooCommerce/Classes/ViewRelated/NotificationsBadgeController.swift
Line 68 in f2e3e2e
input.tabBar.orderedTabBarActionableViews[input.tabIndex].subviews.first?.subviewsbecause the liquid glass design fundamentally alters how UITabBar organizes and manages its internal subview hierarchy. We will have to address this crash, ideally by replacing the existing "custom tab dot" workaround that depends on UITabBar's view hierarchy. This will be included in a p2 for WOOMOB-1213.Steps to reproduce
To reproduce the crash (without this PR):
To verify the fix:
Testing information
I tested the following configurations:
Screenshots
Before this PR, Xcode 26 beta 7 - iPad A16 iOS 26.0 simulator, where the app crashes with tab bar in liquid design:
After this PR, Xcode 26 beta 7 - iPad A16 iOS 26.0 simulator, where the app does not crash with tab bar in previous design:
RELEASE-NOTES.txtif necessary.